home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 May / Disc 2 / PCU0503CD2.iso / Crystal / Samples / CPP / 32bit / Mycall / WINDOWOP.H < prev   
Encoding:
C/C++ Source or Header  |  1998-02-18  |  1.2 KB  |  54 lines

  1. // WindowOptions.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // WindowOptions dialog
  6. #if !defined (_WINDOWOPTIONSH_)
  7. #define _WINDOWOPTIONSH_
  8. class WindowOptions : public CPropertyPage
  9. {
  10.     DECLARE_DYNCREATE(WindowOptions)
  11.  
  12. // Construction
  13. public:
  14.     PEWindowOptions m_windowOptions;
  15.     CMYCALLDoc* m_myCallDoc;
  16.     WindowOptions();
  17.     ~WindowOptions();
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(WindowOptions)
  21.     enum { IDD = IDD_WINDOWOPTIONS };
  22.     BOOL    m_hasGroupTree;
  23.     BOOL    m_canDrillDown;
  24.     BOOL    m_hasNavigationControls;
  25.     BOOL    m_hasCancelButton;
  26.     BOOL    m_hasPrintButton;
  27.     BOOL    m_hasExportButton;
  28.     BOOL    m_hasZoomControl;
  29.     BOOL    m_hasCloseButton;
  30.     BOOL    m_hasProgressControls;
  31.     BOOL    m_hasSearchButton;
  32.     BOOL    m_hasPrintSetupButton;
  33.     BOOL    m_hasRefreshButton;
  34.     //}}AFX_DATA
  35.  
  36.  
  37. // Overrides
  38.     // ClassWizard generate virtual function overrides
  39.     //{{AFX_VIRTUAL(WindowOptions)
  40.     protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45. protected:
  46.     // Generated message map functions
  47.     //{{AFX_MSG(WindowOptions)
  48.     virtual BOOL OnInitDialog();
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51.  
  52. };
  53. #endif // _WINDOWOPTIONSH_
  54.